Purpose |
Add a ListView control to a dialog. A ListView displays a set of predefined string data items in one or more columns. The user may then view the items, selecting one or more of them for use in the program at a later time. |
||||||||||||||||||||||||||||||||||||||||||||
Syntax |
CONTROL ADD LISTVIEW, hDlg, id&, txt$, x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] CALL callback] |
||||||||||||||||||||||||||||||||||||||||||||
hDlg |
Handle of the dialog in which the ListView will be created. The dialog will become the parent of the control. |
||||||||||||||||||||||||||||||||||||||||||||
Unique identifier for the control in the range 1 to 65535, frequently specified with numeric equates for clarity of the code. For example, the equate %PickList is more informative than a literal value such as 497. Best practice suggests identifiers should start at 100 to avoid conflict with any of the standard predefined identifiers. |
|||||||||||||||||||||||||||||||||||||||||||||
txt$ |
Text to associate with the ListView control. A ListView control does not display this text, so it is common to set this value to a null, empty string literal (""). |
||||||||||||||||||||||||||||||||||||||||||||
x,y |
Integer expressions, variables, or numeric literal values specifying the location of the control inside the dialog client area. x is the horizontal position, and y is the vertical position. 0,0 refers to the upper left corner of the dialog box client area. Coordinates are specified in the same terms (pixels or dialog units) as the parent dialog. |
||||||||||||||||||||||||||||||||||||||||||||
Integral expressions, variable, or numeric literal values, specifying the width and height of the control. xx is the width and yy is the height, given in the same terms (pixels or dialog units) as the parent dialog. |
|||||||||||||||||||||||||||||||||||||||||||||
Primary style of the ListView control. The default ListView style comprises %WS_TABSTOP, %LVS_REPORT, and %LVS_SHOWSELALWAYS. This default ListView style is used if the style parameters are omitted from the statement, as in the following example: CONTROL ADD LISTVIEW, hDlg, id&, "", 100, 100, 150, 200, , , CALL LVCallback() If you include explicit style values, they replace the default values. That is, they are not added to the default styles values - your code must specify all necessary primary and extended style parameters. The primary ListView style value can be a combination of any values below, combined together with the OR operator to form a bitmask:
|
|||||||||||||||||||||||||||||||||||||||||||||
exstyle& |
Extended style of the ListView control. The default extended style is %WS_EX_LEFT. The default extended style is used if both the primary and extended parameters are omitted from the CONTROL ADD LISTVIEW statement, in the same manner as style& above. The extended ListView style value can be a combination of any values below, combined together with the OR operator to form a bitmask:
|
||||||||||||||||||||||||||||||||||||||||||||
callback |
Optional name of a Callback Function that receives all %WM_COMMAND and %WM_NOTIFY messages for the control. See the #MESSAGES metastatement to choose which messages will be received. If a callback for the control is not designated, you must create a dialog Callback Function to process messages from your control. If the Callback Function processes a message, it should return TRUE (non-zero) to prevent the message being passed unnecessarily to the dialog callback (if one exists). The dialog callback should also return TRUE if the notification message is processed by that Callback Function. Otherwise, the DDT engine processes unhandled messages. |
||||||||||||||||||||||||||||||||||||||||||||
Remarks |
When a Callback Function receives a %WM_COMMAND message, it should explicitly test the value of CB.CTL and CB.CTLMSG to guarantee it is responding appropriately to the notification messages. |
||||||||||||||||||||||||||||||||||||||||||||
See also |
Dynamic Dialog Tools, CONTROL SET COLOR, CONTROL SET FONT, HEADER, LISTVIEW |